From e84809c56a9d5e008f1dd7ec69f1fe647590a97f Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Mon, 16 Apr 2012 09:34:30 -0400 Subject: [PATCH] ./configure: fix error output for no -libXext Due to the way the tests are structured, a missing libXext will give a warning about a missing libX11 (even if libX11 is installed). This is confusing to people who are trying to build Gtk. https://bugzilla.gnome.org/show_bug.cgi?id=674200 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 3cbfa036d6..4643a67b64 100644 --- a/configure.ac +++ b/configure.ac @@ -976,9 +976,9 @@ if test "x$enable_x11_backend" = xyes; then # Xext is optional, the chances a system has *none* of these things is so # small that we just unconditionally require it. AC_CHECK_FUNC(XOpenDisplay, :, - AC_MSG_ERROR([*** libX11 not found. Check 'config.log' for more details.])) + AC_MSG_ERROR([*** libX11 and libXext not found. Check 'config.log' for more details.])) AC_CHECK_FUNC(XextFindDisplay, :, - AC_MSG_ERROR([*** libXext not found. Check 'config.log' for more details.])) + AC_MSG_ERROR([*** libX11 and libXext not found. Check 'config.log' for more details.])) # Check for xReply -- 2.30.2